home comics writing pictures archive about

TypeIdPair.h

Language: C++
Last Modified: 2022-08-18 12:03:00 AM UTC
File Size: 257 bytes
http://www.penguinstew.ca/example/CodeFormater/TypeIdPair.h
#pragma once
#include <String>
#include <libxml/tree.h>
class TypeIdPair
{
std::string type;
int id;
public:
TypeIdPair(std::string type, int id);
TypeIdPair(xmlNodePtr xmlNode);
bool IsMatch(TypeIdPair);
std::string ToString();
};
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16